home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / xover.h < prev   
C/C++ Source or Header  |  1999-05-14  |  2KB  |  56 lines

  1. #ifndef _SLRN_XOVER_H
  2. #define _SLRN_XOVER_H
  3. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  4.  *
  5.  * This file is part of slrn.
  6.  *
  7.  * Slrn is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  * 
  12.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  13.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15.  * for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with Slrn; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, 59 Temple Place - Suite 330, 
  20.  * Boston, MA  02111-1307, USA.
  21.  */
  22.  
  23. /* In this structure, only subject_malloced will be malloced.  All other 
  24.  * pointers point to a location in that space.  It is done this way because
  25.  * art.c uses this convention and the pointer can just be passed to it.
  26.  */
  27.  
  28. typedef struct
  29. {
  30.    int id;
  31.    char *subject_malloced;
  32.    char *from;
  33.    char *date;
  34.    char *message_id;
  35.    char *references;
  36.    char *xref;
  37.    int bytes;
  38.    int lines;
  39. }
  40. Slrn_XOver_Type;
  41.  
  42. extern char *slrn_get_extra_xover_header (char *);
  43. extern void slrn_map_xover_to_header (Slrn_XOver_Type *, Slrn_Header_Type *);
  44.  
  45. #ifndef SLRNPULL_CODE
  46. extern int slrn_xover_for_msgid (char *, Slrn_XOver_Type *);
  47. extern int slrn_open_xover (int, int);
  48. extern int slrn_read_xover (Slrn_XOver_Type *);
  49. extern void slrn_close_xover (void);
  50.  
  51. extern void slrn_open_suspend_xover (void);
  52. extern void slrn_close_suspend_xover (void);
  53. #endif
  54.  
  55. #endif                       /* _SLRN_XOVER_H */
  56.